home *** CD-ROM | disk | FTP | other *** search
/ The National Palace Museum Experience / The National Palace Museum Experience.iso / Programs / Guide.dxr / 00009.ls < prev    next >
Encoding:
Text File  |  1998-11-19  |  4.5 KB  |  175 lines

  1. global gqtvrinstance, qtvrpath, guidenumber, gbarsprite, gslidersprite, glist, panlist, gcounter, ossprite, oslist, sectionmarker, codelist, objectpict, lightsprite, piclist, objnamesprite, sideboard, objlist, returnlist, objmarker, setspeed
  2.  
  3. on prepareMovie
  4.   qtvrenter(xtra("QTVRXtra"))
  5.   set gqtvrinstance to new(xtra("QTVRXtra"))
  6.   set qtvrpath to "..\Route\"
  7.   set lightsprite to 112
  8.   set objectpict to 113
  9.   set objnamesprite to 114
  10.   set sectionmarker to 94
  11.   set objmarker to 95
  12.   set ossprite to 90
  13.   set gbarsprite to 92
  14.   set gslidersprite to 93
  15.   set sideboard to 108
  16.   set setspeed to "1"
  17.   set the visible of sprite objmarker to 0
  18.   initial()
  19. end
  20.  
  21. on startMovie
  22.   if soundBusy(1) then
  23.     sound stop 1
  24.   end if
  25.   set returnlist to value(field "Guide Location")
  26.   if getProp(returnlist, #flag) = 1 then
  27.     set guidenumber to getProp(returnlist, #guidenumber)
  28.     initial()
  29.     showcast("Guide" & guidenumber)
  30.   else
  31.     set guidenumber to 1
  32.   end if
  33.   showcast("Guide" & guidenumber)
  34.   set the visible of sprite lightsprite to 0
  35. end
  36.  
  37. on initial
  38.   set glist to []
  39.   set oslist to []
  40.   set panlist to []
  41.   set piclist to []
  42.   repeat with i = 13 to 16
  43.     set the visible of sprite i to 1
  44.   end repeat
  45.   repeat with i = 50 to 52
  46.     set the visible of sprite i to 0
  47.   end repeat
  48.   case guidenumber of
  49.     1:
  50.       set piclist to ["guide1-001", "guide1-002", "guide1-003"]
  51.     2:
  52.       set piclist to ["guide2-001", "guide2-002"]
  53.     3:
  54.       set piclist to ["guide3-001", "guide3-002"]
  55.   end case
  56.   repeat with showpic in piclist
  57.     set order to getOne(piclist, showpic)
  58.     puppetSprite(50 + order - 1, 1)
  59.     set the memberNum of sprite (50 + order - 1) to the number of member showpic
  60.     updateStage()
  61.   end repeat
  62.   puppetSprite(sectionmarker, 1)
  63.   set the floatPrecision to 3
  64.   set gcounter to 1
  65. end
  66.  
  67. on recttostr myrect
  68.   set mystring to string(myrect)
  69.   delete char 1 to 5 of mystring
  70.   delete char the length of mystring of mystring
  71.   return mystring
  72. end
  73.  
  74. on stopMovie
  75.   put "[#GuideNumber:" && guidenumber & ", #gCounter:" && gcounter - 1 & ", #Flag: 1]" into field "Guide Location"
  76.   closemovie()
  77.   set gqtvrinstance to 0
  78.   qtvrexit(xtra("QTVRXtra"))
  79.   if the movieRate of sprite ossprite then
  80.     set the movieRate of sprite ossprite to 0
  81.   end if
  82.   gobackpath()
  83. end
  84.  
  85. on closemovie
  86.   if isqtvrmovie(gqtvrinstance) then
  87.     qtvrclose(gqtvrinstance)
  88.   end if
  89. end
  90.  
  91. on openqtvr visibleonoff
  92.   set qtvrRect to recttostr(the rect of sprite 120)
  93.   set qtvrFile to the pathName & qtvrpath & "\Guide" & guidenumber & ".mov"
  94.   qtvropen(gqtvrinstance, qtvrFile, qtvrRect, visibleonoff)
  95.   if qtvrgetqtvrtype(gqtvrinstance) = "QTVRPanorama" then
  96.     InitPanoCallbacks()
  97.   end if
  98. end
  99.  
  100. on createcodelist whichguide
  101.   set filelist to "CodeLIst" && whichguide
  102.   set linecounter to the number of lines in field filelist
  103.   set codelist to [:]
  104.   set objlist to []
  105.   repeat with i = 1 to linecounter
  106.     setaProp(codelist, item 1 of line i of field filelist, item 2 of line i of field filelist)
  107.     append(objlist, item 2 of line i of field filelist)
  108.   end repeat
  109. end
  110.  
  111. on selectmenu
  112.   if the mouseCast > 0 then
  113.     case the name of the mouseMember of
  114.       "MainMenu":
  115.         go("MainMenu")
  116.       "ProgressBar":
  117.         go(string(guidenumber))
  118.     end case
  119.     if not rollOver(120) then
  120.       set the visible of sprite lightsprite to 0
  121.       updateStage()
  122.       puppetSprite(objectpict, 0)
  123.       puppetSprite(objnamesprite, 0)
  124.       set the visible of sprite objmarker to 0
  125.       if rollOver(107) then
  126.         puppetSprite(nodepict, 0)
  127.         set the visible of sprite objmarker to 1
  128.         set the movieRate of sprite ossprite to 0
  129.         set the visible of sprite ossprite to 0
  130.         updateStage()
  131.         go(the frame + 1)
  132.       end if
  133.     end if
  134.   end if
  135. end
  136.  
  137. on setos
  138.   puppetSprite(ossprite, 1)
  139.   set the memberNum of sprite ossprite to the number of member ("OS" & guidenumber)
  140.   updateStage()
  141.   set the movieRate of sprite ossprite to 1
  142. end
  143.  
  144. on showcast castlibname
  145.   set the fileName of castLib "Guide" to castlibname
  146. end
  147.  
  148. on guideselection number
  149.   set the movieRate of sprite ossprite to 0
  150.   set the movieTime of sprite ossprite to 0
  151.   closemovie()
  152.   updateStage()
  153.   set guidenumber to number
  154.   initial()
  155.   showcast("Guide" & guidenumber)
  156.   go("Start")
  157. end
  158.  
  159. on gotoexit
  160.   set the movieRate of sprite ossprite to 0
  161.   go("Exit")
  162. end
  163.  
  164. on notexit
  165.   global returnframe
  166.   set the movieRate of sprite ossprite to 1
  167.   updateStage()
  168.   go(returnframe)
  169. end
  170.  
  171. on toobjectmovie newfile
  172.   put newfile into field "Current Object"
  173.   go(1, "Object")
  174. end
  175.